if h > 50:
    print("Greater than 50")
else:
    if h < 20:
        print("Less than 20")
    else: 
        print("Between 20 and 50")

